fix: quote automation commands for the host shell - #700
NickJosevski wants to merge 15 commits into
Conversation
NickJosevski
left a comment
There was a problem hiding this comment.
Reviewed with a focus on shell-quoting edge cases. The core design (per-shell quoting, cmd two-pass escaping, round-trip tests against real parsers) holds up well; the comments below are the cases that survived verification — two were reproduced against real shells (pwsh 7, zsh 5.9), the cmd/batch one analytically against cmd's documented phase rules.
| sb.WriteString(strings.Repeat(`\`, backslashes*2)) | ||
| backslashes = 0 | ||
| sb.WriteString(`"\^""`) | ||
| case '%': |
There was a problem hiding this comment.
The "^%" escape only holds on the interactive cmd prompt. Inside a batch file (.bat/.cmd) — arguably the main automation-command destination — percent expansion is an earlier phase with different rules: a lone unmatched % is stripped, and an undefined %...% construct is deleted outright. So:
100% Done→"100"^%" Done"→ batch reduces it to"100"^" Done"→ argv sees100"+Done%PATH%→""^%"PATH"^%""→ batch deletes the whole%"PATH"^%run
The batch escape is %%, but that doesn't collapse on the interactive line, so no single encoding satisfies both. In neither mode does ^ actually escape % (percent expansion runs before caret processing); interactive survives only because undefined-variable references are left untouched there — which is also the assumption simulateCmd bakes in, so the round-trip test can't see this. Worth promoting % into the "can't be fixed" list above (scoped to batch files), and it's another candidate for the warning you float in open question 5.
There was a problem hiding this comment.
Actioned in 102520c (docs) and ad69548 (the warning).
quoteCmd's "can't be fixed" list now has three entries and % is one of them, scoped the way you describe: the caret doesn't escape % in either mode, percent expansion being an earlier parsing phase than caret processing; the interactive prompt survives only because it leaves an unmatched % and an undefined %var% alone, and a batch file drops the former and deletes the latter. The comment also records that %% is the batch escape and doesn't collapse at the prompt, so no single encoding satisfies both and the interactive one is the one worth having.
simulateCmd's doc comment now says outright that it models the interactive prompt and that a value containing % doesn't survive a batch file, so the round trip test no longer reads as if it covered both.
On the warning: pkg/util/shell/warn.go holds a per-shell table of characters a quoted value can't reliably carry, and pkg/util/flag/flag.go appends the result to the generated command. % is in it with batch-specific wording — "is expanded before any escaping is applied, so it only survives at the interactive prompt; a .bat or .cmd script drops an unmatched % and replaces %var%" — alongside ! and a line break. Covered by TestPasteWarning in pkg/util/shell/warn_test.go: cmd warns about a percent (100% Cotton), cmd warns about an environment variable (%PATH%), and bash is always fine / powershell is always fine to pin that the warning is cmd-only.
Unverified by execution: there's no cmd.exe or Windows host available here, so both the prompt and the batch behaviours are reasoned from the documented parsing phases rather than run. TestQuoteCmd_RoundTrip exercises the model, not a real cmd — which is the limitation the comment now admits to rather than hides.
|
|
||
| // quotePowerShell quotes for PowerShell. Single quoted strings are literal, and a single | ||
| // quote is escaped by doubling it. | ||
| func quotePowerShell(value string) string { |
There was a problem hiding this comment.
PowerShell's tokenizer treats the Unicode single-quote variants — U+2018 ‘, U+2019 ’, U+201A ‚, U+201B ‛ — as string delimiters equivalent to '. Only ASCII ' is doubled here, so a value containing a curly apostrophe (easy to acquire from a web UI or Word, e.g. Bob’s Project) produces 'Bob’s Project', which pwsh rejects as a parse error.
Verified on pwsh 7: /bin/echo 'Bob’s Project' exits 1 with a parse error, while 'Bob’’s Project' round-trips byte-identically — so doubling all four variants alongside ' fixes it. (isBare already forces quoting for these since they're non-ASCII; the gap is only in the escaping.) Bash and cmd don't treat smart quotes specially, so this is PowerShell-only.
There was a problem hiding this comment.
Actioned in 8a88e5f.
All four variants are now doubled alongside the ASCII quote, via a strings.NewReplacer rather than the single ReplaceAll:
var powerShellQuoteEscaper = strings.NewReplacer(
`'`, `''`,
"‘", "‘‘", // left single quotation mark
"’", "’’", // right single quotation mark
"‚", "‚‚", // single low-9 quotation mark
"‛", "‛‛", // single high-reversed-9 quotation mark
)Covered by two cases in TestQuote: curly apostrophe (Bob’s Project → 'Bob’’s Project') and other smart single quotes (a‘b‚c‛d → 'a‘‘b‚‚c‛‛d'), each asserting bash and cmd leave them alone so the PowerShell-only scoping is pinned too. Bob’s Project is also in roundTripValues, so it goes through TestQuotePowerShell_RoundTrip and TestQuotePowerShell_RoundTripToNativeCommand on CI.
Two things worth recording:
Unverified by execution on my side — there is no pwsh or powershell on this machine (command -v finds neither), so the PowerShell round trip tests skipped locally and I'm taking your pwsh 7 result plus the tokenizer's documented character classes rather than reproducing it. about_Quoting_Rules lists exactly these four as single quotes, and the tokenizer's terminator check is on the character class rather than a match against the opening quote, which is why an ASCII-opened string is closed by a curly one; the doubling works because the escape rule is "the next character is also a single quote", not "the same character again". The pwsh round trip does run on CI (pwsh is on the ubuntu image, and lookShell fails rather than skips when CI is set), so the assertion is checked against a real parser there.
The smart double quotes — U+201C, U+201D, U+201E — are deliberately not in the replacer. They're in the same documented list, but the output is always a single quoted string and nothing terminates that except a single quote, so they're literal. isBare already forces quoting for them as non-ASCII.
| // Characters which carry no special meaning to the shell and so never need quoting. | ||
| // Letters and digits are always safe and aren't repeated here. | ||
| const ( | ||
| posixSafeChars = `@%+=:,./-_` |
There was a problem hiding this comment.
= in the bare set breaks zsh, which this mode explicitly covers: a word starting with = undergoes zsh's =cmd expansion, so a bare =foo makes the whole command abort — verified with zsh 5.9: echo =foo → zsh: foo not found, exit 1. Mid-word = (a=b) is fine; it only needs the leading-position treatment, i.e. quote when the value begins with = (same category of hazard as ~, which you handled by exclusion).
There was a problem hiding this comment.
Actioned in 1491852.
= stays in posixSafeChars — mid-word it is harmless, and taking it out would quote every --variable Name=Value needlessly. The leading-position case is handled where ~ is, in quotePosix:
// = is harmless in the middle of a word but a word which starts with one is subject
// to zsh's =cmd expansion, so `=foo` aborts the whole command with "foo not found".
if !strings.HasPrefix(value, "=") && isBare(value, posixSafeChars) {
return value
}Reproduced here on zsh 5.9 (macOS /bin/zsh --no-rcs -c), and the silent case is worse than the aborting one:
zsh printf '%s' =foo → "zsh:1: foo not found", exit 1
sh printf '%s' =foo → "=foo", exit 0
zsh printf '%s' '=foo' → "=foo", exit 0
zsh printf '%s' a=b → "a=b", exit 0
zsh printf '%s' =ls → "/bin/ls", exit 0
=foo fails loudly, but a value that happens to name a real command — =ls — is substituted with its path and the command runs with the wrong argument, no error. That's the one that argues for quoting rather than documenting.
Covered by leading equals (=foo → '=foo', unquoted for PowerShell and cmd) and embedded equals (a=b stays bare everywhere) in TestQuote, and =foo is in roundTripValues. TestQuoteZsh_RoundTrip was added in the same commit and does run here — 32 subtests pass, including "=foo" and "a=b"; zsh is installed on the CI runner by pr-validation.yml so it runs there too.
|
|
||
| // Current returns the shell to generate automation commands for; the explicitly | ||
| // configured shell if there is one, otherwise the detected host shell. | ||
| func Current() Shell { |
There was a problem hiding this comment.
An unrecognized --shell / OCTOPUS_SHELL value is silently swallowed: Parse fails, so Current falls through to detection and --shell powershel (typo) quietly emits detected-shell quoting — while config set Shell rejects the same value with an error. Since the user explicitly asked for a shell, consider validating the flag/env value (e.g. in root's PersistentPreRun) so an invalid choice errors, or at least warns, instead of being ignored.
There was a problem hiding this comment.
Actioned in e89ef0d, then softened for the environment variable in 30e63a0. Doc comment corrected in 07cfce7.
The finding holds — Parse failing meant Current fell through to detection, so --shell powershel silently quoted for the detected shell. Validation now lives in root's PersistentPreRunE (which became PersistentPreRunE for it), but the two inputs are treated differently:
--shellis a hard error:--shell: the provided value fish is not a valid shell, please use one of bash, powershell, cmd.OCTOPUS_SHELLwarns on stderr and falls back to detection.
The split is the part I'd like you to confirm, because your comment asked for an error "or at least a warning" and I've landed on one of each. The reason for not failing on the environment variable: it's exported once, usually from a shell profile, and applies to every subsequent command, so rejecting it locks the user out of the whole CLI — including the octopus config set Shell they'd need to fix it. --shell doesn't have that problem: it was typed for one command and retyping it is the fix. The first version (e89ef0d) did fail on both; 30e63a0 walked the env var back for exactly that reason.
Covered by pkg/cmd/root/root_test.go: TestRoot_InvalidShellFlagIsRejected, TestRoot_ValidShellFlagIsAccepted, TestRoot_InvalidShellEnvIsWarnedAboutbutNotFatal, TestRoot_ValidShellEnvIsSilent, and TestRoot_ShellFlagSupersedesInvalidEnv (a good flag alongside a bad env var is silent, since the flag is the more specific signal). All pass.
Two residuals, both deliberate but say if you disagree:
- The config file value is not checked in
PersistentPreRunEat all, andCurrentignores a bad one silently.config set Shellvalidates on the way in, so a bad value there can only come from hand editing the file. 07cfce7 fixes the code comment, which wrongly claimed the file value was warned about too. - The warning goes to stderr unconditionally, so a scripted
--no-promptrun with a staleOCTOPUS_SHELLexported will emit it on every invocation. That seemed better than silence, but it is noise if anyone is in that state.
Open question: is one-error-one-warning the split you want, or would you rather OCTOPUS_SHELL also be fatal and accept the lockout (recoverable with env -u OCTOPUS_SHELL octopus ...)?
| localViper.Set(key, boolValue) | ||
| } else { | ||
| case strings.ToLower(constants.ConfigShell): | ||
| if err := shell.Validate(value); err != nil { |
There was a problem hiding this comment.
Two small gaps in the config surface:
- There's no way back to auto-detect:
octopus config set Shell ""fails validation, so once set, the only reset is hand-editing the config file. Allowing empty (the documented default) to clear the key would fix that. config get's interactivepromptMissingkey list (pkg/cmd/config/get/get.go) wasn't givenConfigShell, so the new key appears inset's picker but notget's. (config get Shellby name still works, sinceIsValidKeygoes throughviper.AllKeys().)
There was a problem hiding this comment.
Both actioned in 144f46b, with tests added in 24e693c.
- Empty now clears the setting rather than failing validation, so there's a way back to auto-detection without hand editing the file:
case strings.ToLower(constants.ConfigShell):
// empty is the documented default and clears the setting, putting the CLI back
// to detecting the shell it is running under
if value != "" {
if err := shell.Validate(value); err != nil {
return err
}
}
localViper.Set(key, value)It writes "shell": "" rather than removing the key — viper has no unset — but that's the same state as never having set it, since Current calls Parse(""), gets false, and falls through to Detect.
constants.ConfigShellis now inget'spromptMissinglist too, so the key appears in both pickers.
There were no tests over any of this — pkg/cmd/config/{get,list,set} had no test files at all — so 24e693c adds pkg/cmd/config/set/set_test.go. TestSetRun_Shell is a table over the Shell case: a name is stored, an alias is stored as typed, empty clears the setting asserts the written file has shell: "", and powershel / fish are rejected with the shell package's message. TestSetRun_OtherKeys covers the NoPrompt and default branches either side of the new case plus the invalid-key path, so reshaping the switch can't quietly drop them. The test points HOME (and AppData) at a temp dir and sets the global viper up against it, since IsValidKey deliberately reaches out to the global instance.
One thing I didn't do: get's and set's key lists are still two hand-maintained copies, which is how the omission you found happened in the first place — set gained ConfigShell and get didn't. A shared constants.ConfigKeys slice would make the next key a one-line change, but it touches both commands beyond what this PR needs, so I've left it. Want it in here or as a follow-up?
Generated automation commands always used single quotes, which cmd.exe passes through verbatim, so the command fails to find the entity. Values are now quoted using the rules of the shell the CLI is running under, and values needing no quoting are emitted bare. The shell can be forced with `octopus config set Shell cmd`, OCTOPUS_SHELL, or --shell. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
zsh's EQUALS option, on by default, expands a word beginning with = to the path of the named command, so a bare `=foo` aborts the whole command with "foo not found" rather than passing the value through. The bash quoting covers zsh, so a leading = now forces quoting the same way ~ already does. Adds a zsh round trip test alongside the sh one; zsh is the stricter of the two so it catches this class of expansion. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
PowerShell's tokenizer accepts U+2018, U+2019, U+201A and U+201B as single quotes, so any of them closes a single quoted string in the same way ' does. A value carrying a curly apostrophe, which is easy to pick up from a web UI or Word, produced 'Bob’s Project' and PowerShell rejected it as a parse error. All four are now doubled alongside the ascii quote; doubling the same character is how PowerShell escapes it, so the value round trips unchanged. bash and cmd don't treat these characters specially, so this is PowerShell only. isBare already forced quoting for them since they aren't ascii; the gap was in the escaping. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
The caret doesn't escape %; percent expansion is an earlier parsing phase than caret processing. "^%" works at the prompt only because an unmatched % and an undefined %var% are left alone there. A batch file drops the first and deletes the second, so `100% Done` and `%PATH%` are both mangled when the command is pasted into a .bat or .cmd file. The batch escape is %%, which in turn doesn't collapse at the prompt, so no single encoding suits both and % joins newlines and delayed expansion in the can't-be-fixed list. The round trip test simulates the interactive prompt, which is noted on the simulator so it isn't read as evidence for batch files. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
Current falls back to detection when the configured value doesn't parse, so `--shell powershel` quietly produced detected-shell quoting while `config set Shell powershel` rejected the same value. The flag and the environment variable are now validated in the root PersistentPreRun, which becomes PersistentPreRunE so it can fail. The config file value is deliberately not validated there: a bad value hand-edited into the file would otherwise fail every command including the config commands needed to correct it. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
…fig get Two gaps in the config surface for the new key: - an empty value was rejected by validation, so once Shell was set the only way back to auto detection was hand editing the config file. Empty is the documented default, so it now clears the key. - config get's interactive key picker never listed Shell, though set's did. Getting it by name already worked, since IsValidKey goes through viper. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
5e0cb99 to
144f46b
Compare
Validating OCTOPUS_SHELL in PersistentPreRunE aborted every command, so a stale or mistaken value exported in a shell profile locked the user out of the whole CLI, including the `octopus config set Shell` needed to fix it. --shell keeps failing: it is typed for a single command, so an error is what the user expects and retyping it is the fix. The environment variable and the config file value are set once and apply to everything afterwards, so those now warn and fall back to detecting the host shell.
zsh isn't on the ubuntu runner image, so TestQuoteZsh_RoundTrip skipped on every build. It is the strict posix test, and the only executable guard for the leading = fix, so quoting could have regressed with CI still green. Installs zsh in the workflow, and makes a missing shell fail rather than skip when CI is set so the coverage can't quietly disappear again.
quotePowerShell gets a value through PowerShell's parser, but handing it on to a native executable is a second step, and Windows PowerShell 5.1 rebuilds the command line without escaping. A trailing backslash and an embedded double quote both arrive corrupted there however they are quoted, which is a limitation worth stating next to the code rather than leaving to be rediscovered. PowerShell 7 is unaffected. The existing round trip test uses Write-Host, a cmdlet, so it only proves PowerShell parsed the value; it never reaches the native argument step where this goes wrong. Adds a second round trip through printf that does.
The comment claimed double quoted output also works in PowerShell, which holds for an ordinary quoted value but not for one containing a double quote, where the ^ escapes mean nothing to PowerShell, nor for a trailing backslash, which cmd doubles for argv. The fallback is still the better of the two, but it isn't the clean degradation the comment promised, and it matters because this is the branch taken whenever the parent process can't be identified.
Detection read $SHELL, which names the login shell rather than the shell the command was typed into. Someone whose login shell is bash but who is working in pwsh got posix quoting, and 'Bob'\''s Project' is not something pwsh can parse, so the generated command was broken for exactly the case the shell support was added for. parentProcessName was stubbed out on unix as only being needed to tell cmd and PowerShell apart, but pwsh on unix is that case. Reads /proc on linux and asks ps elsewhere, falling back to $SHELL when the parent isn't a shell we know, which is what happens under make, a CI runner or an IDE. Detect now takes the lookup as a parameter alongside goos and getenv so the unix and windows branches are both testable, which also removes the skip the windows cases needed.
quoteCmd's encoding for % only survives the interactive prompt; a .bat or .cmd file drops an unmatched % and substitutes %var%, so a project named "100% Cotton" is silently wrong when the generated command is pasted into a script, which is what the command is for. ! has the same problem under delayed expansion, and a line break can't be quoted in cmd at all. None of that is fixable in the quoting, so the command now says so. The warning is appended to the returned string rather than printed by each of the 49 call sites, which all print the result verbatim; that keeps the warning attached to the command it describes without a mechanical change across the whole tree. Posix and PowerShell can quote anything, so they never warn.
The comment had the two environments the wrong way round: pwsh ships on the ubuntu runner image, so the PowerShell round trip runs on every build, and it is a local machine without pwsh that skips it. Reading it the other way makes the PowerShell quoting look unverified and invites a change to it being under-tested.
4e725ed to
cf7e489
Compare
The Shell case in setRun had no test, so neither the rejection of an invalid value nor the empty-clears-the-setting behaviour was pinned down. Adds a table test over both, plus the NoPrompt and default branches either side of it so reshaping the switch can't quietly drop them. The config path comes from HOME (AppData on windows), so the test points those at a temp dir and sets the global viper up against it; IsValidKey deliberately reaches out to the global instance. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
The comment claimed the config file value was warned about alongside OCTOPUS_SHELL; it isn't checked there at all. `config set Shell` validates on the way in, so a bad value in the file can only come from hand editing, and Current ignores it silently the same way it ignores a bad environment variable. Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
Fixes #72
The problem
flag.GenerateAutomationCmdwrapped every string value in single quotes. cmd.exe doesn't treat single quotes as quoting, so it hands them to the CLI verbatim and the server can't find'Soft Drinks'.Approach
New
pkg/util/shellpackage with aShelltype and per-shell quoting:'escaped as'\'''escaped by doublingValues made only of characters with no meaning to the target shell are emitted bare, so
--environment Devand--version 0.0.3now have no quotes at all (goal 1 in the issue). The safe set differs per shell —%is safe in bash but not in cmd,,is safe in bash but not in PowerShell.Shell selection, highest precedence first:
--shellflag →OCTOPUS_SHELLenv var →Shellconfig key (octopus config set Shell cmd) → detection. Detection uses$SHELLon unix (default bash) and the parent process name on Windows (default cmd, because double-quoted output also works in PowerShell whereas single-quoted output is broken in cmd — so the wrong guess degrades gracefully in only one direction).Only
flag.GenerateAutomationCmddid any quoting, so there was exactly one call site to change; the ~30 commands that call it are untouched.cmd.exe escaping
cmd is irregular enough to be worth spelling out. The generated text has to survive cmd's parsing and then the argv parsing Go does at startup:
"is emitted as"\^""— the surrounding quotes are closed around it so cmd's quote counting stays balanced, the quote is caret-escaped so cmd doesn't toggle on it, and argv sees\"which is a literal quote that keeps argv inside its quoted run. Plain""doubling is wrong here: Go's argv parser emits the quote but also leaves quoted mode, so a later space would split the argument.\are doubled when they hit a"(including the closing one), per the usual Windows argv rules%is expanded by cmd even inside double quotes and cannot be caret-escaped there, so it's emitted outside the quotes as"^%"Before / after
Issue example,
octopus release deploywith projectSoft Drinks, version0.0.3, environmentDev, tenant tagRegions/us-east:octopus release deploy --project 'Soft Drinks' --version '0.0.3' --environment 'Dev' --tenant-tag 'Regions/us-east' --no-promptoctopus release deploy --project 'Soft Drinks' --version 0.0.3 --environment Dev --tenant-tag Regions/us-east --no-promptoctopus release deploy --project 'Soft Drinks' --version 0.0.3 --environment Dev --tenant-tag Regions/us-east --no-promptoctopus release deploy --project "Soft Drinks" --version 0.0.3 --environment Dev --tenant-tag Regions/us-east --no-promptAwkward values:
DevDevDevDevSoft Drinks'Soft Drinks''Soft Drinks'"Soft Drinks"Bob's Project'Bob'\''s Project''Bob''s Project'"Bob's Project"Say "hi"'Say "hi"''Say "hi"'"Say "\^""hi"\^"""100% Done'100% Done''100% Done'"100"^%" Done"$PATH'$PATH''$PATH'"$PATH"C:\Program Files\App'C:\Program Files\App''C:\Program Files\App'"C:\Program Files\App"''''""Test evidence
pkg/util/shell/quote_test.gois the heart of the change:TestQuote— table-driven, every shell against plain values, spaces, single quotes, double quotes, backticks,$VAR,%VAR%, newlines, tildes, commas, non-ASCII, Windows paths, backslash-before-quote, and the empty stringTestQuoteCmd_RoundTrip— 29 awkward values pushed through a cmd.exe simulator (carets, quote-state tracking, and a hard failure on any unescaped%or metacharacter left outside quotes) and then through an implementation of the Windows argv rules, asserting the value comes back byte-identicalTestQuotePosix_RoundTrip— the same values through a real/bin/sh, assertingprintf '%s'prints exactly the inputTestQuotePowerShell_RoundTrip— same, through a realpwshif one is installed; skips otherwise (it skips on CI and it skipped locally)TestParse/TestValidate/TestDetect, andpkg/util/flag/flag_test.gocovering the assembled command per shell (strings, string slices, bools, ints, secure flags)Results from the worktree:
The one existing assertion that pinned the old output (
TestDeployCreate_GenerationOfAutomationCommand_MasksSensitiveVariables) was updated for the now-unquoted--version 2.0 --environment dev, and pinsOCTOPUS_SHELLso it doesn't depend on where the tests run.Open questions / options
Everything below is a real decision, not a rhetorical one.
Lowest-common-denominator vs shell-specific. I went shell-specific. A single double-quoted format looks tempting and does work for cmd + PowerShell + bash on simple values, but it breaks the moment a value contains
$(bash and PowerShell expand it inside double quotes) or`(PowerShell escape), and those are legal in Octopus entity names. The cost is that we now have three code paths and a detection problem. Happy to collapse to one format if the team prefers fewer moving parts over correctness on odd names.What detection should do when it can't tell. On Windows I default to
cmdwhen the parent process can't be identified. Rationale: cmd's double-quoted output is also valid in PowerShell for almost every value, whereas the reverse is not true at all. The counter-argument is that most Windows developers are in PowerShell and would see slightly less idiomatic output all the time to protect the minority of cmd users. The other option is defaulting topowershelland telling cmd users to set the config value.Config key name. I used
Shell(octopus config set Shell cmd), matching the existingEditor/OutputFormatstyle, withOCTOPUS_SHELLand--shell. Alternatives:AutomationShell/OCTOPUS_AUTOMATION_SHELL, which is more precise about what it affects but wordier. Also worth deciding whether--shelldeserves to be a global flag — it appears in every command's help and therefore in the generated docs. Config + env var alone would keep help output unchanged.What I could not verify without a real Windows box. I have no Windows machine here, so:
--project "Bob's & Co",100% DoneandSay "hi"would be worth doing before merge.parent_windows.go(Toolhelp32 snapshot of the parent process) cross-compiles cleanly but has never been executed. If the parent turns out to be something like Windows Terminal or a wrapper rather than the shell, detection falls through to thecmddefault. Suggestions welcome for a better signal — I deliberately did not usePSModulePath, since it's a machine-level variable that cmd.exe inherits too and so is a false positive generator."regardless of how the string literal is written (this is the known pre-7.3 argument-passing behaviour). Values with embedded double quotes may still not survive on Windows PowerShell; that is a PowerShell limitation rather than something this quoting can fix.Known unfixable in cmd. A newline in a value cannot be represented in a cmd command line at all — it's emitted literally and the command will break.
!is expanded when delayed expansion is enabled. Both are noted in the code comments. Do we want to warn the user when the generated command contains one of these, similar to the existing sensitive-variable warning?🤖 Generated with Claude Code